home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
14
/
3
/
DISK1431.ZIP
/
TOOLS
/
FUNC.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1988-02-13
|
504b
|
21 lines
; FUNC.CMD Allow mainframes to simulate function
; keys with ^C<n> and ^C shifted-<n>
; Also allow the ` key to be META as well as ESC
bind-to-key execute-macro-21 ^C
21 store-macro
!if ¬ $pending
write-message "FN-"
!endif
set %rcchar >key
set %rcchar &sindex "1234567890!@#$%^&*()" %rcchar
!if &equ %rcchar 0
write-message "[Not Bound]"
!return
!endif
clear-message-line
set %rcchar &mid ";<=>?@ABCDTUVWXYZ[\]" %rcchar 1
&ind &bind &cat "FN" %rcchar
!endm